home *** CD-ROM | disk | FTP | other *** search
/ F1 Licenseware / F1 Licenseware - Volume 1.iso / disks / 050a.dms / 050a.adf / EXAMPLE_PROGRAMS / example05.AMOS / example05.amosSourceCode
AMOS Source Code  |  1992-02-26  |  700b  |  25 lines

  1. '====================
  2. 'EXAMPLE PROGRAM 5.0   
  3. '====================
  4. 'A program to load an IFF picture and display it 
  5. '
  6. Rem hide the mouse pointer 
  7. '--------------------------
  8. Hide 
  9.  
  10.  
  11. Rem LOAD an iff picture called SONIC.IFF from the disk in DF0: the file is 
  12. Rem drawer PICS/.  And then display it onto screen 0.
  13. Rem if you have the TCBGTA disk in your external drive change DF0: to DF1: 
  14. '--------------------------------------------------------------------------
  15. Load Iff "DF0:PICS/SONIC.IFF",0
  16.  
  17.  
  18. Rem WAIT for the user to press a KEY 
  19. '------------------------------------
  20. Wait Key 
  21.  
  22.  
  23. Rem Go back to the Amos editor the program has ended 
  24. '----------------------------------------------------
  25. Edit